Regular Expressions

SUMMARY

A regular Expression (RE) serves as a template or mask a text to be searched is compared with.

CONTENTS

  1. Introduction
  2. Literal, Meta Character, Anchor
  3. Meta characters that are supported
  4. Anchor that are supported

Introduction

A Regular Expression (RE) serves as a template or mask a text to be searched is compared with. Thereby the RE is interpreted und tested whether it matches on any position of the searched text.
Some characters do take a special role, they are called Meta Characters.

Literal, Meta Character, Anchor

Literal are the letters A-Z, a-z and the numerics 0-9 as well as most of the special characters; literal can be taken one to one into a RE.

Meta characters are characters that are not searched for, but describe in connection with others the string that is searched for. By combining meta characters you get a powerful tool to spot several search terms by a single RE.

Literal and meta characters relate to one or more characters while an anchor represents a position, it does not correspond with a character of the text to be searched.

Meta characters that are supported

Anchor that are supported